In This Topic
Encapsulates a method that has a single parameter (passed by reference) and does not return a value.
Syntax
'Declaration
Public Delegate Sub StructAction(Of As {New, Struct})( _
ByRef As _
)
public delegate void StructAction<>(
ref
)
where T: new(), struct
Parameters
- item
- The parameter of the method that this delegate encapsulates.
Type Parameters
- T
- The type of the parameter of the method that this delegate encapsulates.
See Also